home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Files / Browse_Directory.bsh < prev    next >
Text File  |  2013-07-28  |  2KB  |  56 lines

  1. /*
  2.  * Browse_Directory.bsh - a BeanShell macro script for the
  3.  * jEdit text editor - Prompts for a path name and opens it
  4.  * in the file system browser
  5.  * Copyright (C) 2001 Slava Pestov
  6.  *
  7.  * This program is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU General Public License
  9.  * as published by the Free Software Foundation; either version 2
  10.  * of the License, or any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with the jEdit program; if not, write to the Free Software
  19.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  *
  21.  * $Id: Browse_Directory.bsh 21353 2012-03-14 09:46:51Z jojaba_67 $
  22.  *
  23.  * Checked for jEdit 4.0 API
  24.  *
  25.  */
  26.  
  27. //Localization
  28. final static String DirectoryBrowseLabel = jEdit.getProperty("macro.rs.BrowseDirectory.DirectoryBrowse.label",  "Directory to browse:");
  29.  
  30. // Process
  31. void browseDirectory()
  32. {
  33.     path = Macros.input(view, DirectoryBrowseLabel);
  34.     if(path != null)
  35.         VFSBrowser.browseDirectory(view,path);
  36. }
  37.  
  38. browseDirectory();
  39.  
  40. /*
  41.     Macro index data (in DocBook format)
  42.  
  43. <listitem>
  44.     <para><filename>Browse_Directory.bsh</filename></para>
  45.     <abstract><para>
  46.         Opens a directory supplied by the user in the file system
  47.         browser.
  48.     </para></abstract>
  49. </listitem>
  50.  
  51. */
  52.  
  53.  
  54. // end Browse_Directory.bsh
  55.  
  56.